home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / tex / texsrc.arc / TIME.H < prev    next >
C/C++ Source or Header  |  1988-09-14  |  287b  |  17 lines

  1.           struct tm 
  2.               {
  3.                  int    tm_sec,
  4.                   tm_min,
  5.                   tm_hour,
  6.                   tm_mday,
  7.                   tm_mon,
  8.                   tm_year,
  9.                   tm_wday,
  10.                   tm_yday,
  11.                   tm_isdst;
  12.                  };            
  13.  
  14. extern    struct  tm *localtime();
  15. extern long time();
  16.  
  17.